CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - LL 分析

搜索资源列表

  1. 判断是否为LL(1)文法 java编写

    2下载:
  2. 此程序是语法分析,判断是否为LL(1)文法,如果是则构造first集,follow集,select集,并输出分析表。程序用java编写。
  3. 所属分类:编译器/词法分析

  1. 判断是否为LL(1)文法 C语言

    0下载:
  2. 此程序是语法分析,判断是否为LL(1)文法,如果是则构造first集,follow集,select集,并输出分析表。程序用C语言编写。
  3. 所属分类:编译器/词法分析

  1. LL(1)法对布尔表达式的语法分析

    0下载:
  2. LL(1)法对布尔表达式的语法分析
  3. 所属分类:C#编程

    • 发布日期:2008-12-22
    • 文件大小:762
    • 提供者:jason88129
  1. LL(1)_LR(0)_Demo

    0下载:
  2. 包括一个LR(1)的语法分析程序和一个LL(1)的语法分析程序的例子- Including LR (1) grammar analysis program and LL (1) grammar analysis program example
  3. 所属分类:Compiler program

    • 发布日期:2017-11-09
    • 文件大小:239560
    • 提供者:杨军
  1. c_compiler

    0下载:
  2. 本程序集是Allen I. Holub所写的《Compiler Design in C》一书的附随软件,其中有作者自己编写的词法分析和语法分析工具LeX,occs和LLama,该软件包还包括一个显示C语言分析过程的程序-This set of program is the attached software in 《Compiler Design in C》 writed by Allen I. Holub, it contains the Lex, occs and Llama which a
  3. 所属分类:Compiler program

    • 发布日期:2017-11-09
    • 文件大小:225289
    • 提供者:站长
  1. LL(1)

    0下载:
  2. 用LL(1)法对布尔表达式的语法分析- (1) the law analyzes with LL to the Boolean expression grammar
  3. 所属分类:Compiler program

    • 发布日期:2017-11-10
    • 文件大小:1874
    • 提供者:祥瑞
  1. ll(1)YUFAPANDUAN

    1下载:
  2. 学编译原理时写的一个语法分析程序 分类:C/C++技术交流 一.[目的要求] ① 对输入文法,由程序自动构造FIRST FOLLOW集 ② 对输入文法,由程序自动生成它的LL(1)分析表; ③ 对于给定的输入串,应能判断识别该串是否为给定文法的句型。 二.[题目分析] 该程序可分为如下几步: (1)读入文法 (2)判断正误 (3)若无误,判断是否为LL(1)文法 (4)若是,构造分析表; (5)由总控算法判断输入符
  3. 所属分类:Compiler program

    • 发布日期:2017-03-23
    • 文件大小:4780
    • 提供者:liangye
  1. ll(1)

    0下载:
  2. 一个LL1分析器,可以输入产生式的条数,以及产生式,开始符号 结束符号 可以输出堆栈的运行情况-A LL1 parser, you can enter the production number of the article, as well as the production start symbol symbol can be the end of the operation of the output stack
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:16146
    • 提供者:刘以风
  1. LL

    0下载:
  2. 编译器中的语法分析部分,按照LL语法分析规则,简单的实现。-Compiler of syntax analysis, in accordance with the LL parsing rules, a simple realization.
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:7671
    • 提供者:chuchong
  1. LL(1)

    0下载:
  2. 本文件主要是针对编译原理的语法分析和语义分析,用的是LL(1)文法。-This document is mainly directed against the principle of compiler syntax analysis and semantic analysis, using a LL (1) grammar.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-09
    • 文件大小:318329
    • 提供者:Mace
  1. LL(1)Lexical_Analysis

    0下载:
  2. LL(1) 文法分析。。。 输出first集&&follow集&& 预测分析表。-LL(1)Lexical_Analysis
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:2423
    • 提供者:zyh
  1. ll(1)fenxi

    0下载:
  2. 本程序是采用的LL(1)方法进行的语法分析,而LL(1)的分析方法是属于自上而下的方法。 自上而下分析的基本思想是:对任意输入串,试图用一切可能的方法,从文法开始符号(根结点)出发,自上而下为输入串建立一棵语法树。从推导的角度看,它是从文法的开始符号出发,反复使用各种产生式,寻找与输入串匹配的推导。 在输入之前必须要进行该文法是不是LL(1)文法的判断,然后再构造相应的LL(1)分析表来用预测分析方法进行语法分析,依据下面的文法及分析表来设计程序实现预测分析的分析过程。
  3. 所属分类:Compiler program

    • 发布日期:2017-03-26
    • 文件大小:1558
    • 提供者:WM
  1. LL1_VC

    0下载:
  2. LL(1)文法使用的是确定的自顶向下的分析技术。LL(1)的含义是:第一个L表明自顶向下分析是从左向右扫描输入串,第2个L表明分析过程中将使用最左推导,1表明只需向右看一个符号便可决定如何推导,即选择哪个产生式(规则)进行推导。-LL (1) grammar using a set top-down analysis techniques. LL (1) the meaning is: the first one L shows a top-down analysis is a scan inp
  3. 所属分类:Compiler program

    • 发布日期:2017-05-15
    • 文件大小:3694037
    • 提供者:biao
  1. LL(1)Parser.C

    0下载:
  2. 一个简单的LL(1)带预测的语法分析器源代码-A simple LL (1) with a predictable source code parser
  3. 所属分类:Compiler program

    • 发布日期:2017-03-25
    • 文件大小:1716
    • 提供者:王天放
  1. LL(1)

    0下载:
  2. 运用VB编写的一个关于编译原理实践的LL(1)预测分析系统,可视化界面,方便。-Prepared using a VB compiler theory practice on LL (1) forecast analysis system, visual interface and convenient.
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:242499
    • 提供者:zhh
  1. LL(1)

    0下载:
  2. 编译原理LL(1)分析过程模拟 设计一个给定LL(1)分析表,输入一个句子,能由依据LL(1)分析表输出与句子 对应的语法树。能对语法树生成过程进行模 拟-for LL(1)
  3. 所属分类:Compiler program

    • 发布日期:2017-04-09
    • 文件大小:1657841
    • 提供者:
  1. LL(1)

    0下载:
  2. LL(1)实现语法分析(自上而下,自下而上)的可视化过程-LL(1)
  3. 所属分类:Compiler program

    • 发布日期:2017-04-09
    • 文件大小:1265557
    • 提供者:yt
  1. Syntax_Analysis-LL(1)-LCC

    0下载:
  2. 编译原理之语法分析LL(1) (1)消除左递归 (2)求First集 (3)求Follow集 (4)预测分析表 (5)预测分析过程-Compiler theory of parsing LL (1) (1) elimination of left recursion (2) Find First Set (3) Find Follow set (4) prediction of sheet (5) prediction analysis
  3. 所属分类:Compiler program

    • 发布日期:2017-03-22
    • 文件大小:66567
    • 提供者:
  1. LL-(1)-parser

    0下载:
  2. LL(1)语法分析器设计 1.如下为给定的LL(1)文法。 G[<P>]: 1) <P>->program <D> : <T> begin <S> end {program} 2) D->i D’ {i} 3) D’->, i D’ {,} 4) D’->ε {:} 5) S->s S’ {s} 6) S’-> s S’ { } 7) S’->ε {end
  3. 所属分类:Compiler program

    • 发布日期:2017-03-24
    • 文件大小:190103
    • 提供者:浮云
  1. LL-LR-analysis

    0下载:
  2. 进行LL分析和LR分析的实验报告,含源码和结果显示。-LL LR analysis for the experimental analysis and reporting, including source code and results.
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:143323
    • 提供者:huang
« 12 3 4 5 6 7 8 9 10 ... 17 »
搜珍网 www.dssz.com